Functions
|
Character manipulation
|
|
|
|
| checks if a character is alphanumeric (function)
|
|
|
|
| checks if a character is alphabetic (function)
|
|
|
|
| checks if a character is lowercase (function)
|
|
|
|
| checks if a character is an uppercase character (function)
|
|
|
|
| checks if a character is a digit (function)
|
|
|
|
| checks if a character is a hexadecimal character (function)
|
|
|
|
| checks if a character is a control character (function)
|
|
|
|
| checks if a character is a graphical character (function)
|
|
|
|
| checks if a character is a space character (function)
|
|
|
|
| checks if a character is a printing character (function)
|
|
|
|
| checks if a character is a punctuation character (function)
|
|
|
|
| converts a character to lowercase (function)
|
|
|
|
| converts a character to uppercase (function)
|
Conversions to numeric formats
|
|
|
|
| converts a character string to a floating point value (function)
|
|
|
|
| converts a character string to an integer value (function)
|
|
|
|
| converts a character string to an integer value (function)
|
|
|
|
| converts a character string to an unsigned integer value (function)
|
|
|
|
| converts a character string to a floating point value (function)
|
String manipulation
|
|
|
|
| copies one string to another (function)
|
|
|
|
| copies a certain amount of characters from one string to another (function)
|
|
|
|
| concatenates two strings (function)
|
|
|
|
| concatenates a certain amount of characters of two strings (function)
|
|
|
|
| converts a substring so that it can be used by string comparison functions (function)
|
String examination
|
|
|
|
| returns the length of a given string (function)
|
|
|
|
| compares two strings (function)
|
|
|
|
| compares a certain amount of characters of two strings (function)
|
|
|
|
| compares two strings in accordance to the current locale (function)
|
|
|
|
| finds the first occurrence of a character (function)
|
|
|
|
| finds the last occurrence of a character (function)
|
|
|
|
| returns the length of the maximum initial segment that consists of only the characters found in another character string (function)
|
|
|
|
| returns the length of the maximum initial segment that consists of only the characters not found in another character string (function)
|
|
|
|
| finds the first location of any character in one string, in another string (function)
|
|
|
|
| finds the first occurrence of a substring of characters (function)
|
|
|
|
| finds the next token in a character string (function)
|
Memory manipulation
|
|
|
|
| searches an array for the first occurrence of a character (function)
|
|
|
|
| compares two buffers (function)
|
|
|
|
| fills a buffer with a character (function)
|
|
|
|
| copies one buffer to another (function)
|
|
|
|
| moves one buffer to another (function)
|
Miscellaneous
|
|
|
|
| returns a text version of a given error code (function)
|